Package-level declarations

Functions

Link copied to clipboard
@JvmName(name = "isFalseNullable")
fun <T : Any> KProperty1<T, Boolean?>.isFalse(): PredicateSpecification<T>

Creates a PredicateSpecification that checks if the nullable Boolean property is false.

fun <T : Any> KProperty1<T, Boolean>.isFalse(): PredicateSpecification<T>

Creates a PredicateSpecification that checks if the Boolean property is false.

Link copied to clipboard
@JvmName(name = "isTrueNullable")
fun <T : Any> KProperty1<T, Boolean?>.isTrue(): PredicateSpecification<T>

Creates a PredicateSpecification that checks if the nullable Boolean property is true.

fun <T : Any> KProperty1<T, Boolean>.isTrue(): PredicateSpecification<T>

Creates a PredicateSpecification that checks if the Boolean property is true.